/* ------------------------- */
/* --- 0. GLOBAL STYLES --- */
/* ------------------------- */
:root {
    --chili-red: #E02020;
    --dark-green-text: #0D3B1E;
    --leaf-green-accent: #7CB518;
    --complimentary-yellow: #FAB819;
    --bg-dark: #121212;
    --bg-light: #FDFDFD;
    --text-light: #EAEAEA;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Lato', sans-serif;
    --font-accent: 'Dancing Script', cursive;
    --card-bg: #282828;
    --flame-orange: #FF6B00;
    --flame-yellow: #FFD700; 
    /* New variables for Culinary Versatility section */
    --light-card-bg: #F5F5F5;
    --text-dark: #212121;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    letter-spacing: 1.5px;
    font-weight: 400;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.section {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ------------------------- */
/* --- 1. NAVIGATION --- */
/* ------------------------- */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar .logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--chili-red);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar .logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(224, 32, 32, 0.7);
}

.logo-icon {
    color: var(--complimentary-yellow);
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--chili-red);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--chili-red);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.8rem;
    cursor: pointer;
}

/* ------------------------- */
/* --- 2. HERO SECTION --- */
/* ------------------------- */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1607582544644-5c9a43521151?q=80&w=2070&auto=format&fit=crop') center center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.heat-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(224, 32, 32, 0.15) 0%, rgba(0,0,0,0) 70%);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: 5.5rem;
    color: white;
    line-height: 1;
    text-shadow: 0 0 20px rgba(224, 32, 32, 0.5);
    margin-bottom: 20px;
    animation: pulse 2s infinite alternate;
}

@keyframes pulse {
    from { text-shadow: 0 0 10px rgba(224, 32, 32, 0.5); }
    to { text-shadow: 0 0 30px rgba(224, 32, 32, 0.8); }
}

.hero h1 .highlight {
    color: var(--chili-red);
    display: block;
}

.hero p {
    font-size: 1.2rem;
    margin: 20px 0 40px;
    max-width: 700px;
}

/* Scoville Challenge Game */
.scoville-game {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    max-width: 500px;
}

.game-progress {
    height: 10px;
    background: #333;
    border-radius: 5px;
    margin: 20px 0;
    overflow: hidden;
}

.game-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, var(--leaf-green-accent), var(--complimentary-yellow), var(--chili-red));
    transition: width 0.5s ease-out;
}

.game-feedback {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    color: var(--complimentary-yellow);
}

.badge-earned {
    display: none;
    text-align: center;
    margin-top: 20px;
    animation: bounceIn 1s;
}

.badge-icon {
    font-size: 3rem;
    color: var(--flame-yellow);
    margin-bottom: 10px;
}

/* ------------------------- */
/* --- 3. ABOUT SECTION --- */
/* ------------------------- */
#about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.chili-story h2 {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--leaf-green-accent), var(--chili-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.chili-story .subtitle {
    font-family: var(--font-accent);
    color: var(--leaf-green-accent);
    font-size: 2rem;
    text-shadow: 0 0 10px rgba(124, 181, 24, 0.3);
    margin-bottom: 15px;
    display: block;
}

.interactive-text {
    color: var(--chili-red);
    cursor: pointer;
    font-weight: bold;
    text-decoration: underline dotted;
    position: relative;
    transition: color 0.3s, transform 0.3s;
}

.interactive-text:hover {
    color: var(--flame-orange);
    transform: translateY(-2px);
}

.tooltip {
    visibility: hidden;
    width: 220px;
    background-color: var(--chili-red);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -110px;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateY(10px);
    font-family: var(--font-body);
    font-weight: normal;
}

.interactive-text:hover .tooltip {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.heat-o-meter-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background-color: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.heat-o-meter-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(224, 32, 32, 0.3);
}

.heat-o-meter {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.heat-o-meter #heat-arc {
    transition: stroke-dashoffset 0.8s ease-out;
}

.heat-o-meter text {
    transition: fill 0.5s ease-out;
}

/* ------------------------- */
/* --- 4. PRODUCTS SECTION --- */
/* ------------------------- */
#products h2 {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 40px;
    font-family: var(--font-heading);
    background: linear-gradient(to right, var(--chili-red), var(--flame-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-showcase-container {
    display: flex;
    flex-wrap: wrap;
    border-radius: 15px;
    padding: 40px;
    gap: 40px;
    align-items: center;
    justify-content: center;
    max-width: 1600px; 
    margin: 40px auto;
    background-color: var(--card-bg);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: visible; 
    position: relative; 
}
.product-showcase-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(224, 32, 32, 0.3);
}

.product-image-wrapper {
    position: absolute; 
    left: -300px; 
    top: 0; 
    transform: translateY(0); 
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    perspective: 1000px;
    z-index: 10; 
}

.main-bottle-img {
    width: 900px; 
    height: auto;
    display: block;
    filter: drop-shadow(5px 5px 15px rgba(0,0,0,0.5));
    transition: transform 0.3s ease-out;
    cursor: grab;
}
.main-bottle-img:active {
    cursor: grabbing;
}

.main-bottle-img.squeezed {
    animation: squeezeShake 0.4s ease-in-out;
}

@keyframes squeezeShake {
    0% { transform: translateX(0) rotateY(0); }
    25% { transform: translateX(-5px) rotateY(-5deg); }
    50% { transform: translateX(5px) rotateY(5deg); }
    75% { transform: translateX(-3px) rotateY(-3deg); }
    100% { transform: translateX(0) rotateY(0); }
}

/* Sauce drip animation (still present in CSS but not triggered by JS) */
.sauce-drip {
    position: absolute;
    width: 30px; 
    height: 60px; 
    background: var(--chili-red);
    border-radius: 50% 50% 0 0;
    opacity: 0;
    z-index: 5;
    bottom: 300px; 
}

.product-info {
    flex-grow: 1;
    text-align: left;
    max-width: 450px;
    margin-left: 220px; /* Adjusted for alignment with other sections */
    margin-top: 100px; 
}

.info-tagline {
    font-family: var(--font-accent);
    color: var(--leaf-green-accent);
    font-size: 2rem;
    margin-bottom: 10px;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 15px;
    color: var(--text-light);
    letter-spacing: 1.5px;
}

.info-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #ccc;
}

.scoville-price-group {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.price-display {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--leaf-green-accent);
    flex-grow: 1;
    text-align: left;
    text-shadow: 0 0 10px rgba(124, 181, 24, 0.3);
}

.action-button {
    background: var(--chili-red);
    color: white;
    border: none;
    padding: 15px 40px;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    cursor: pointer;
    border-radius: 50px;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(224, 32, 32, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.action-button:hover {
    background-color: #c01a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(224, 32, 32, 0.6);
}

.action-button:active {
    transform: translateY(-1px);
}

.squeeze-feedback {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--leaf-green-accent);
    color: var(--bg-dark);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out, visibility 0.5s;
    z-index: 10;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.squeeze-feedback.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-20px);
}

/* ------------------------------------- */
/* --- 5. CULINARY VERSATILITY STYLES --- */
/* ------------------------------------- */
#culinary-versatility h2 {
    text-align: center;
    /* Updated from old linear-gradient */
    font-size: 4.5rem; /* Increased size */
    margin-bottom: 60px; /* Increased margin */
    font-family: 'Oswald', sans-serif; /* New font for this H2 */
    background: linear-gradient(90deg, var(--flame-orange), var(--chili-red)); /* Using existing vars */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 10px rgba(255, 122, 0, 0.3); /* New text shadow */
}

.recipe-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 50px; /* Increased gap */
    margin-top: 40px;
}

.recipe-card {
    background: var(--light-card-bg); /* Using new light background variable */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4); /* Stronger shadow */
    display: flex;
    flex-direction: column;
    color: var(--text-dark); /* Using new dark text variable */
    text-align: center;
    padding-bottom: 15px; 
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    /* Removed old flip card styles */
    height: auto; /* Allow height to adjust to content */
    position: relative; /* Needed for img container */
    transform-style: flat; /* No 3D transform needed */
}

.recipe-card:hover {
    transform: translateY(-10px); /* More pronounced hover */
    box-shadow: 0 15px 30px rgba(var(--chili-red), 0.4); /* Using chili-red for shadow */
}

.recipe-card-image-container {
    width: 100%;
    height: 220px; /* Fixed height for consistent image size */
    overflow: hidden;
}

.recipe-card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.recipe-card:hover .recipe-card-image-container img {
    transform: scale(1.1);
}

.recipe-card-content {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.recipe-card-content h4 {
    font-size: 1.8rem;
    color: var(--text-dark); /* Using new dark text variable */
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif; /* Specific font for recipe card titles */
}

.recipe-card-description {
    font-size: 0.95rem;
    color: #666; /* Specific grey color from new design */
    margin-bottom: 25px;
    padding: 0 10px;
    font-family: 'Montserrat', sans-serif; /* Specific font for recipe card description */
}

/* Removed old culinary-tab and culinary-content-display styles */

/* ------------------------- */
/* --- 6. WHY CHOOSE SECTION --- */
/* ------------------------- */
#why-choose-sopiro h2 {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 40px;
    background: linear-gradient(to right, var(--leaf-green-accent), var(--chili-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
    align-items: stretch;
}

.why-choose-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.why-choose-card:hover {
    transform: translateY(-8px);
    background-color: #3a3a3a;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    border-color: var(--chili-red);
}

.why-choose-card .why-choose-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    color: var(--chili-red);
    transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-icon {
    color: var(--leaf-green-accent);
    transform: scale(1.1);
}

.why-choose-card h3 {
    font-size: 2.2rem;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.2;
}

.why-choose-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
    flex-grow: 1;
}

/* ------------------------- */
/* --- 7. FOOTER --- */
/* ------------------------- */
footer {
    padding: 60px 5%;
    background: #0A0A0A;
    text-align: center;
    position: relative;
}

.contact-us-section {
    max-width: 500px;
    margin: 0 auto;
    padding-bottom: 30px;
}

footer h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.social-icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-icon {
    font-size: 2.5rem;
    transition: transform 0.2s;
    color: var(--text-light);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    color: var(--chili-red);
}

.footer-bottom {
    margin-top: 50px;
    color: #777;
    font-size: 0.9rem;
}

/* ------------------------- */
/* --- 8. MODAL --- */
/* ------------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s;
}

.modal-overlay.visible {
    visibility: visible;
    opacity: 1;
}

.modal-content {
    background: var(--bg-dark);
    padding: 30px;
    border-radius: 10px;
    text-align: left; 
    max-width: 600px; 
    width: 90%;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255,255,255,0.1);
    max-height: 80vh; 
    overflow-y: auto; 
    animation: modalFadeIn 0.4s ease-out;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-content h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--chili-red);
}

.modal-content p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-light);
    line-height: 1.6;
}

.modal-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.modal-content ol {
    list-style-type: decimal;
    margin-left: 20px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s;
}

.close-button:hover {
    color: var(--chili-red);
}

.modal-ok-button {
    background: var(--chili-red);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
    display: block; 
    margin: 20px auto 0; 
}

.modal-ok-button:hover {
    background-color: #c01a1a;
}

/* ------------------------- */
/* --- 9. RESPONSIVENESS --- */
/* ------------------------- */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 4.5rem;
    }
    
    #about {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .heat-o-meter-container {
        margin-top: 30px;
    }

    /* Culinary Versatility Responsiveness */
    #culinary-versatility h2 { font-size: 3.5rem; }
}

/* Product section responsiveness */
@media (max-width: 1400px) { 
    .product-showcase-container {
        max-width: 1400px;
    }
    .product-image-wrapper {
        left: -250px;
        top: -80px;
    }
    .main-bottle-img {
        width: 800px;
    }
    .product-info {
        margin-left: 350px; /* Adjusted for smaller wide screens */
        margin-top: 80px;
    }
    .sauce-drip {
        bottom: 250px;
    }
}

@media (max-width: 1200px) { 
    .product-showcase-container {
        max-width: 1200px;
    }
    .product-image-wrapper {
        left: -200px;
        top: -50px;
    }
    .main-bottle-img {
        width: 700px;
    }
    .product-info {
        margin-left: 280px; /* Adjusted for standard wide screens */
        margin-top: 50px;
    }
    .sauce-drip {
        bottom: 200px;
    }
}

@media (max-width: 992px) { 
    .product-showcase-container {
        max-width: 850px; 
        padding: 30px;
        gap: 15px; 
        text-align: center;
    }
    .product-image-wrapper {
        left: -120px; 
        top: -50px; 
    }
    .main-bottle-img {
        width: 550px; 
    }
    .product-info {
        margin-left: 200px; /* Adjusted for iPads */
        margin-top: 50px; 
    }
    .sauce-drip {
        bottom: 180px; 
    }
    /* Reduced font sizes for iPad devices */
    #products h2 {
        font-size: 3.2rem;
    }
    .info-tagline {
        font-size: 1.7rem;
    }
    .product-info h3 {
        font-size: 2.8rem;
    }
    .info-description {
        font-size: 1rem;
    }
    .price-display {
        font-size: 2.5rem;
        text-align: center; 
    }
    .action-button {
        font-size: 1.4rem;
        padding: 12px 30px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .section {
        padding: 60px 20px;
    }
    
    .product-showcase-container {
        flex-direction: column;
        padding: 20px; 
        gap: 15px; 
        text-align: center;
        max-width: 90vw; 
        overflow: hidden; 
    }

    .product-image-wrapper {
        position: relative; 
        left: auto;
        top: auto;
        transform: none;
        margin-bottom: 20px; 
        z-index: auto; 
    }

    .main-bottle-img {
        width: 100%; 
        max-width: 450px; 
    }

    .product-info {
        text-align: center;
        margin-left: 0; 
        margin-top: 0; 
    }

    .scoville-price-group {
        justify-content: center; 
    }

    .product-info h3 {
        font-size: 1.8rem; 
    }
    .info-tagline {
        font-size: 1.3rem; 
    }
    .info-description {
        font-size: 0.8rem; 
    }
    .price-display {
        font-size: 2rem; 
        text-align: center; 
    }
    #products h2 {
        font-size: 2rem; 
    }
    .action-button {
        font-size: 1.3rem; 
        padding: 12px 30px;
    }
    .sauce-drip {
        width: 10px;
        height: 20px;
        bottom: 100px; 
    }

    /* Culinary Versatility Responsiveness */
    #culinary-versatility h2 {
        font-size: 3rem;
        margin-bottom: 40px;
    }
    .recipe-cards {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Why Choose Sopiro Responsiveness */
    #why-choose-sopiro h2 {
        font-size: 3rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-card {
        padding: 25px;
    }
    
    .why-choose-card .why-choose-icon {
        width: 60px;
        height: 60px;
    }
    
    .why-choose-card h3 {
        font-size: 1.8rem;
    }
    
    .why-choose-card p {
        font-size: 1rem;
    }
    
    .social-icon {
        font-size: 2rem;
    }
    
    /* Scoville Challenge Game */
    .scoville-game {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .chili-story h2, #products h2, #culinary-versatility h2, #why-choose-sopiro h2 {
        font-size: 2.5rem;
    }
    
    .info-tagline {
        font-size: 1.5rem;
    }
    
    .product-info h3 {
        font-size: 2rem;
    }
    
    .action-button {
        padding: 10px 25px;
        font-size: 1.2rem;
    }
    /* Culinary Versatility Responsiveness */
    .recipe-card-content h4 { font-size: 1.6rem; }
}